home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Megahits 5
/
Megahits 5 (1994)(GTI - Rhein-Main-Soft)(DE)(Disc 2 of 2)[!].iso
/
archive
/
conv
/
make3d.lha
/
Make3DpicFromBuffers.ifx
< prev
next >
Wrap
Text File
|
1994-01-13
|
827b
|
51 lines
/*
* Make3DpicFromSwap v1.0
* Arexx Macro for use with ImageFX
*
* Makes a picture 3D for use with Red & Blue glasses.
* The Left and Right eye images must be in the Main and Swap buffers.
*
*
* For multiple image processing use IMP and put this script in Proc.
*
* Written By Torgeir Holm ©1994
*
*/
OPTIONS RESULTS
DrawMode Normal
Blend 100
EdgeMode Normal 0
FillMode Solid 0 0 0 SMOOTH
/* Make Red & Cyan buffers*/
Buffer2Alpha
ClearBuffer 0 0 0 FORCE
ActiveColor 4
MenuPalette
SetPalette '-1' 0 255 255
MenuToolbox
AlphaChannel Frisket
FloodFill 50 50 30
Brightness '64'
Swap
Buffer2Alpha
ClearBuffer 0 0 0 FORCE
ActiveColor 5
MenuPalette
SetPalette '-1' 255 0 0
MenuToolbox
FloodFill 50 50 30
Brightness '64'
/* Combine the Images to make 3D image and free alpha channel memory*/
Add
KillAlpha
EXIT